Re-exports§
pub use frame_decoder::BlockDecodingStrategy;
pub use frame_decoder::FrameDecoder;
pub use streaming_decoder::StreamingDecoder;
Modules§
- In a Zstandard frame, there’s a frame header, followed by one or more blocks.
- Structures and utilities used for reading from data, decoding that data and storing the output.
- Framedecoder is the man struct users interact with to decode zstd frames
- FSE, short for Finite State Entropy, is an encoding technique that assigns shorter codes to symbols that appear more frequently in data, and longer codes to less frequent symbols.
- Re-exports of std values for when the std is available.